Session คือ ตัวแปรชนิดหนึ่งที่มีไว้สำหรับจัดเก็บค่าบางอย่างเอาไว้ในขณะที่มีการทำงานอยู่ในหน้าเว็บไซต์นั้น ๆ โดยปกติ Session จะมีอายุอยู่ตลอดเวลาในการทำงาน และจะถูกทำลายทิ้งเมื่อผู้ใช้งานออกจากหน้าเว็บไซต์
ภาพรวมของ Session ASP.NET C#
1. สร้าง Session ใช้คำสั่ง Session['SESSION_NAME'] หรือ Session.Add('SESSION_NAME', 'SESSION_VALUE' )
2. การลบ Session ตัวที่ต้องการใช้คำสั่ง Session.Remove('SESSION_NAME')
3. การลบ Session ทั้งหมดใช้คำสั่ง Session.Clear()
ตัวอย่างโปรแกรม .aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TEST._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label runat="server" ID="lbl"></asp:Label>
</div>
</form>
</body>
</html>
ตัวอย่างโปรแกรม .aspx.cs
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
namespace TEST
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Session["sess_webName"] = "Helo, World www.amplysoft.com";
Session.Add("sess_Name", "amplysoft");
lbl.Text = "Session WebName = " + Session["sess_webName"].ToString();
lbl.Text += "Session Name = " + Session["sess_Name"].ToString();
Session.Remove("sess_Name");
Session.Clear();
if (Session["sess_Name"] == null && Session["sess_webName"] == null)
{
lbl.Text += "Session Delete";
}
}
}
}
ผลลัพธ์
Session WebName = Helo, World www.amplysoft.com
Session Name = amplysoft
Session Delete